100
|
How can I change the background color for parts of the text

public void init()
{
COM com_Node;
anytype var_Node;
;
super();
var_Node = COM::createFromObject(exchartview1.Nodes()).Add("Child"); com_Node = var_Node;
com_Node.Caption("<bgcolor=FF0000>new</bgcolor> caption");
}
|
99
|
How can I change the foreground color for parts of the text

public void init()
{
COM com_Node;
anytype var_Node;
;
super();
var_Node = COM::createFromObject(exchartview1.Nodes()).Add("Child"); com_Node = var_Node;
com_Node.Caption("<fgcolor=FF0000>new</fgcolor> caption");
}
|
98
|
How can I show the node as strikeout

public void init()
{
COM com_Node;
anytype var_Node;
;
super();
var_Node = COM::createFromObject(exchartview1.Nodes()).Add("Child"); com_Node = var_Node;
com_Node.Caption("<s>new</s> caption");
}
|
97
|
How can I show the node as underlined

public void init()
{
COM com_Node;
anytype var_Node;
;
super();
var_Node = COM::createFromObject(exchartview1.Nodes()).Add("Child"); com_Node = var_Node;
com_Node.Caption("<u>new</u> caption");
}
|
96
|
How can I show the node as italic

public void init()
{
COM com_Node;
anytype var_Node;
;
super();
var_Node = COM::createFromObject(exchartview1.Nodes()).Add("Child"); com_Node = var_Node;
com_Node.Caption("<i>new</i> caption");
}
|
95
|
How can I bold the node

public void init()
{
COM com_Node;
anytype var_Node;
;
super();
var_Node = COM::createFromObject(exchartview1.Nodes()).Add("Child"); com_Node = var_Node;
com_Node.Caption("<b>new</b> caption");
}
|
94
|
How can I change the node's caption

public void init()
{
COM com_Node;
anytype var_Node;
;
super();
var_Node = COM::createFromObject(exchartview1.Nodes()).Add("Child"); com_Node = var_Node;
com_Node.Caption("new caption");
}
|
93
|
How can I display hierarchical the child nodes so they are indented relative to their parents

public void init()
{
COM com_Node,com_Nodes;
anytype var_Node,var_Nodes;
;
super();
exchartview1.HasButtons(-1/*exPlus*/);
exchartview1.PenLink(0/*exPenSolid*/);
exchartview1.PenWidthLink(3);
exchartview1.IndentSiblingX(12);
exchartview1.IndentSiblingY(12);
exchartview1.Root().Image(0);
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
var_Node = COM::createFromObject(com_Nodes.Add("As <b>Tree</b>",,"1234")); com_Node = var_Node;
com_Node.ArrangeSiblingNodesAs(2/*exTree*/);
com_Nodes.Add("Sub 1","1234");
com_Nodes.Add("Sub 2","1234","456");
com_Nodes.Add("Item 1","456");
var_Node = COM::createFromObject(com_Nodes.Add("Item 2","456","78")); com_Node = var_Node;
com_Node.Expanded(false);
com_Nodes.Add("Item 2.1","78");
com_Nodes.Add("Item 2.2","78");
com_Nodes.Add("Item 3","456");
com_Nodes.Add("Sub 3","1234");
com_Nodes.Add("As <b>Default</b>",,"AA");
com_Nodes.Add("Item 1","AA");
com_Nodes.Add("Item 2","AA","BB");
com_Nodes.Add("Item 2.1","BB");
com_Nodes.Add("Item 2.2","BB");
com_Nodes.Add("Item 2.3","BB");
com_Nodes.Add("Item 3","AA");
}
|
92
|
How can I display the child nodes as a tree, so they are indented relative to their parents

public void init()
{
COM com_Node,com_Node1,com_Nodes;
anytype var_Node,var_Node1,var_Nodes;
;
super();
exchartview1.IndentSiblingY(4);
exchartview1.HasButtons(-1/*exPlus*/);
var_Node = exchartview1.Root(); com_Node = var_Node;
com_Node.Image(0);
com_Node.ArrangeSiblingNodesAs(2/*exTree*/);
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
com_Nodes.Add("Child 1",,"1234");
com_Nodes.Add("Sub 1","1234");
com_Nodes.Add("Sub 2","1234","456");
com_Nodes.Add("Item 1","456");
var_Node1 = COM::createFromObject(com_Nodes.Add("Item 2","456","78")); com_Node1 = var_Node1;
com_Node1.Expanded(false);
com_Nodes.Add("Item 2.1","78");
com_Nodes.Add("Item 2.2","78");
com_Nodes.Add("Item 3","456");
com_Nodes.Add("Sub 3","1234");
com_Nodes.Add("Child 2");
}
|
91
|
How can I indent the child nodes relative to their parents

public void init()
{
COM com_Node,com_Nodes;
anytype var_Node,var_Nodes;
;
super();
exchartview1.IndentChild(32);
exchartview1.HasButtons(-1/*exPlus*/);
exchartview1.Root().Image(0);
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
var_Node = COM::createFromObject(com_Nodes.Add("AsTree",,"1234")); com_Node = var_Node;
com_Node.ArrangeSiblingNodesAs(2/*exTree*/);
com_Nodes.Add("Sub 1","1234");
com_Nodes.Add("Sub 2","1234","456");
com_Nodes.Add("Item 1","456");
var_Node = COM::createFromObject(com_Nodes.Add("Item 2","456","78")); com_Node = var_Node;
com_Node.Expanded(false);
com_Nodes.Add("Item 2.1","78");
com_Nodes.Add("Item 2.2","78");
com_Nodes.Add("Item 3","456");
com_Nodes.Add("Sub 3","1234");
com_Nodes.Add("Child 2",,"AA");
com_Nodes.Add(1,"AA");
com_Nodes.Add(2,"AA","BB");
com_Nodes.Add("2.1","BB");
com_Nodes.Add("2.2","BB");
com_Nodes.Add(3,"AA");
}
|
90
|
How can I increase the distance between nodes

public void init()
{
COM com_Nodes;
anytype var_Nodes;
;
super();
exchartview1.IndentSiblingY(64);
exchartview1.Root().Image(0);
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
com_Nodes.Add("<a1>Link 1</a>",,"1234");
com_Nodes.Add("Sub <a1>Link 1</a>","1234");
com_Nodes.Add("Sub 2","1234");
com_Nodes.Add("Sub 3","1234");
com_Nodes.Add("<a2>Link 2</a>");
}
|
89
|
How can I increase the distance between nodes

public void init()
{
COM com_Nodes;
anytype var_Nodes;
;
super();
exchartview1.IndentSiblingX(64);
exchartview1.Root().Image(0);
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
com_Nodes.Add("<a1>Link 1</a>",,"1234");
com_Nodes.Add("Sub <a1>Link 1</a>","1234");
com_Nodes.Add("Sub 2","1234");
com_Nodes.Add("Sub 3","1234");
com_Nodes.Add("<a2>Link 2</a>");
}
|
88
|
How can I add an anchor or a hyperlink

public void init()
{
COM com_Nodes;
anytype var_Nodes;
;
super();
exchartview1.Root().Image(0);
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
com_Nodes.Add("<a1>Link 1</a>",,"1234");
com_Nodes.Add("Sub <a1>Link 1</a>","1234");
com_Nodes.Add("Sub 2","1234");
com_Nodes.Add("Sub 3","1234");
com_Nodes.Add("<a2>Link 2</a>");
}
|
87
|
Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions, after the user clicks it

public void init()
{
COM com_Nodes;
anytype var_Nodes;
;
super();
exchartview1.FormatAnchor(false,"<u><fgcolor=880000> </fgcolor></u>");
exchartview1.Root().Image(0);
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
com_Nodes.Add("<a1>Link 1</a>",,"1234");
com_Nodes.Add("Sub <a1>Link 1</a>","1234");
com_Nodes.Add("Sub 2","1234");
com_Nodes.Add("Sub 3","1234");
com_Nodes.Add("<a2>Link 2</a>");
}
|
86
|
Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions

public void init()
{
COM com_Nodes;
anytype var_Nodes;
;
super();
exchartview1.FormatAnchor(true,"<u><fgcolor=FF0000> </fgcolor></u>");
exchartview1.Root().Image(0);
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
com_Nodes.Add("<a1>Link 1</a>",,"1234");
com_Nodes.Add("Sub <a1>Link 1</a>","1234");
com_Nodes.Add("Sub 2","1234");
com_Nodes.Add("Sub 3","1234");
com_Nodes.Add("<a2>Link 2</a>");
}
|
85
|
How can I save data in XML format
public void init()
{
;
super();
}
|
84
|
Can I load data from XML files
public void init()
{
;
super();
}
|
83
|
How can I assign multiple icons to a node

public void init()
{
COM com_Node,com_Nodes;
anytype var_Node,var_Nodes;
str var_s;
;
super();
var_s = "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTql";
var_s = var_s + "Vq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0";
var_s = var_s + "ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN";
var_s = var_s + "AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=";
exchartview1.Images(COMVariant::createFromStr(var_s));
exchartview1.HTMLPicture("pic1","c:\\exontrol\\images\\zipdisk.gif");
exchartview1.Root().Image(0);
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
com_Nodes.Add("Child <b>1</b>",,"1234");
var_Node = COM::createFromObject(com_Nodes.Add("Sub 1","1234")); com_Node = var_Node;
com_Node.Caption("<img>1</img> text <img>2</img> and so on<br>bla <b>bla</b> left<r><img>3</img>");
var_Node = com_Nodes.Add("Sub 2","1234"); com_Node = var_Node;
com_Node.Caption("<img>pic1</img> text <img>1:6</img><img>1:6</img><img>1</img> <img>2</img>");
com_Node.FixedWidth(124);
com_Node.FixedHeight(48);
com_Nodes.Add("Sub 3","1234");
com_Nodes.Add("Child <b>2</b>");
}
|
82
|
How can I assign multiple pictures to a node

public void init()
{
COM com_Node,com_Node1,com_Nodes;
anytype var_Node,var_Node1,var_Nodes;
;
super();
exchartview1.HTMLPicture("pic1","c:\\exontrol\\images\\zipdisk.gif");
exchartview1.HTMLPicture("pic2","c:\\exontrol\\images\\auction.gif");
var_Node = exchartview1.Root(); com_Node = var_Node;
com_Node.Image(0);
com_Node.AddAssistant("Assistant 1");
com_Node.AddAssistant("Assistant 2");
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
com_Nodes.Add("Child <b>1</b>",,"1234");
var_Node1 = com_Nodes.Add("Sub 1","1234"); com_Node1 = var_Node1;
com_Node1.Caption("<img>pic1</img> text <img>pic2</img>");
com_Node1.FixedWidth(108);
com_Node1.FixedHeight(48);
com_Nodes.Add("Sub 2","1234");
com_Nodes.Add("Sub 3","1234");
com_Nodes.Add("Child <b>2</b>");
}
|
81
|
How can I change the color of the line that links assistant nodes

public void init()
{
COM com_Node,com_Nodes;
anytype var_Node,var_Nodes;
;
super();
exchartview1.LinkAssistantColor(WinApi::RGB2int(255,0,0));
var_Node = exchartview1.Root(); com_Node = var_Node;
com_Node.Image(0);
com_Node.AddAssistant("Assistant 1");
com_Node.AddAssistant("Assistant 2");
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
com_Nodes.Add("Child <b>1</b>",,"1234");
com_Nodes.Add("Sub 1","1234");
com_Nodes.Add("Sub 2","1234");
com_Nodes.Add("Sub 3","1234");
com_Nodes.Add("Child <b>2</b>");
}
|
80
|
How can I change the width of the line that links assistant nodes

public void init()
{
COM com_Node,com_Nodes;
anytype var_Node,var_Nodes;
;
super();
exchartview1.PenLinkAssistant(0/*exPenSolid*/);
exchartview1.PenWidthLinkAssistant(4);
var_Node = exchartview1.Root(); com_Node = var_Node;
com_Node.Image(0);
com_Node.AddAssistant("Assistant 1");
com_Node.AddAssistant("Assistant 2");
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
com_Nodes.Add("Child <b>1</b>",,"1234");
com_Nodes.Add("Sub 1","1234");
com_Nodes.Add("Sub 2","1234");
com_Nodes.Add("Sub 3","1234");
com_Nodes.Add("Child <b>2</b>");
}
|
79
|
How can I change the style of the line that links assistant nodes

public void init()
{
COM com_Node,com_Nodes;
anytype var_Node,var_Nodes;
;
super();
exchartview1.PenLinkAssistant(4/*exPenDashDotDot*/);
var_Node = exchartview1.Root(); com_Node = var_Node;
com_Node.Image(0);
com_Node.AddAssistant("Assistant 1");
com_Node.AddAssistant("Assistant 2");
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
com_Nodes.Add("Child <b>1</b>",,"1234");
com_Nodes.Add("Sub 1","1234");
com_Nodes.Add("Sub 2","1234");
com_Nodes.Add("Sub 3","1234");
com_Nodes.Add("Child <b>2</b>");
}
|
78
|
How can I change the shape of the cursor when it hovers the +/- or expand/collapse buttons

public void init()
{
COM com_Node,com_Node1,com_Nodes;
anytype var_Node,var_Node1,var_Nodes;
;
super();
exchartview1.Cursor(3/*exExpandButtonArea*/,"exHelp");
exchartview1.HasButtons(-1/*exPlus*/);
var_Node = exchartview1.Root(); com_Node = var_Node;
com_Node.Image(0);
com_Node.AddAssistant("Assistant 1");
com_Node.AddAssistant("Assistant 2");
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
var_Node1 = COM::createFromObject(com_Nodes.Add("Child <b>1</b>",,"1234")); com_Node1 = var_Node1;
com_Node1.Expanded(false);
com_Nodes.Add("Sub 1","1234");
com_Nodes.Add("Sub 2","1234");
com_Nodes.Add("Sub 3","1234");
com_Nodes.Add("Child <b>2</b>");
}
|
77
|
How do I change the shape of the cursor when the user clicks an drags the chart

public void init()
{
COM com_Node,com_Node1,com_Nodes;
anytype var_Node,var_Node1,var_Nodes;
;
super();
exchartview1.Cursor(2/*exDragChart*/,"exHelp");
var_Node = exchartview1.Root(); com_Node = var_Node;
com_Node.Image(0);
com_Node.AddAssistant("Assistant 1");
com_Node.AddAssistant("Assistant 2");
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
var_Node1 = COM::createFromObject(com_Nodes.Add("Child <b>1</b>",,"1234")); com_Node1 = var_Node1;
com_Node1.Expanded(false);
com_Nodes.Add("Sub 1","1234");
com_Nodes.Add("Sub 2","1234");
com_Nodes.Add("Sub 3","1234");
com_Nodes.Add("Child <b>2</b>");
}
|
76
|
How do I change the shape of the cursor when it hovers a node

public void init()
{
COM com_Node,com_Node1,com_Nodes;
anytype var_Node,var_Node1,var_Nodes;
;
super();
exchartview1.Cursor(1/*exNodeArea*/,"exHelp");
var_Node = exchartview1.Root(); com_Node = var_Node;
com_Node.Image(0);
com_Node.AddAssistant("Assistant 1");
com_Node.AddAssistant("Assistant 2");
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
var_Node1 = COM::createFromObject(com_Nodes.Add("Child <b>1</b>",,"1234")); com_Node1 = var_Node1;
com_Node1.Expanded(false);
com_Nodes.Add("Sub 1","1234");
com_Nodes.Add("Sub 2","1234");
com_Nodes.Add("Sub 3","1234");
com_Nodes.Add("Child <b>2</b>");
}
|
75
|
How do I change the shape of the cursor when it hovers the chart

public void init()
{
COM com_Node,com_Node1,com_Nodes;
anytype var_Node,var_Node1,var_Nodes;
;
super();
exchartview1.Cursor(0/*exChartArea*/,"exHelp");
var_Node = exchartview1.Root(); com_Node = var_Node;
com_Node.Image(0);
com_Node.AddAssistant("Assistant 1");
com_Node.AddAssistant("Assistant 2");
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
var_Node1 = COM::createFromObject(com_Nodes.Add("Child <b>1</b>",,"1234")); com_Node1 = var_Node1;
com_Node1.Expanded(false);
com_Nodes.Add("Sub 1","1234");
com_Nodes.Add("Sub 2","1234");
com_Nodes.Add("Sub 3","1234");
com_Nodes.Add("Child <b>2</b>");
}
|
74
|
How can I copy and paste the control's content to Microsoft Word for instance

public void init()
{
COM com_Node,com_Node1,com_Nodes;
anytype var_Node,var_Node1,var_Nodes;
;
super();
exchartview1.HasButtons(-1/*exPlus*/);
exchartview1.PenLink(0/*exPenSolid*/);
exchartview1.PenWidthLink(3);
var_Node = exchartview1.Root(); com_Node = var_Node;
com_Node.Image(0);
com_Node.AddAssistant("Assistant 1");
com_Node.AddAssistant("Assistant 2");
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
var_Node1 = COM::createFromObject(com_Nodes.Add("Child <b>1</b>",,"1234")); com_Node1 = var_Node1;
com_Node1.Expanded(false);
com_Nodes.Add("Sub 1","1234");
com_Nodes.Add("Sub 2","1234");
com_Nodes.Add("Sub 3","1234");
com_Nodes.Add("Child <b>2</b>");
}
|
73
|
How can I copy and paste the control's content to Microsoft Word for instance

public void init()
{
COM com_Node,com_Node1,com_Nodes;
anytype var_Node,var_Node1,var_Nodes;
;
super();
exchartview1.HasButtons(-1/*exPlus*/);
exchartview1.ButtonsAlign(18/*MiddleRight*/);
var_Node = exchartview1.Root(); com_Node = var_Node;
com_Node.Image(0);
com_Node.AddAssistant("Assistant 1");
com_Node.AddAssistant("Assistant 2");
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
var_Node1 = COM::createFromObject(com_Nodes.Add("Child <b>1</b>",,"1234")); com_Node1 = var_Node1;
com_Node1.Expanded(false);
com_Nodes.Add("Sub 1","1234");
com_Nodes.Add("Sub 2","1234");
com_Nodes.Add("Sub 3","1234");
com_Nodes.Add("Child <b>2</b>");
}
|
72
|
How can I enable or disable expanding or collapsing a node when user double clicks it

public void init()
{
COM com_Node,com_Node1,com_Nodes;
anytype var_Node,var_Node1,var_Nodes;
;
super();
exchartview1.ExpandOnDblClk(false);
exchartview1.HasButtons(-1/*exPlus*/);
exchartview1.ButtonsAlign(18/*MiddleRight*/);
var_Node = exchartview1.Root(); com_Node = var_Node;
com_Node.Image(0);
com_Node.AddAssistant("Assistant 1");
com_Node.AddAssistant("Assistant 2");
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
var_Node1 = COM::createFromObject(com_Nodes.Add("Child <b>1</b>",,"1234")); com_Node1 = var_Node1;
com_Node1.Expanded(false);
com_Nodes.Add("Sub 1","1234");
com_Nodes.Add("Sub 2","1234");
com_Nodes.Add("Sub 3","1234");
com_Nodes.Add("Child <b>2</b>");
}
|
71
|
How can I align the +/- expand or collapse buttons to the right

public void init()
{
COM com_Node,com_Node1,com_Nodes;
anytype var_Node,var_Node1,var_Nodes;
;
super();
exchartview1.HasButtons(-1/*exPlus*/);
exchartview1.ButtonsAlign(18/*MiddleRight*/);
var_Node = exchartview1.Root(); com_Node = var_Node;
com_Node.Image(0);
com_Node.AddAssistant("Assistant 1");
com_Node.AddAssistant("Assistant 2");
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
var_Node1 = COM::createFromObject(com_Nodes.Add("Child <b>1</b>",,"1234")); com_Node1 = var_Node1;
com_Node1.Expanded(false);
com_Nodes.Add("Sub 1","1234");
com_Nodes.Add("Sub 2","1234");
com_Nodes.Add("Sub 3","1234");
com_Nodes.Add("Child <b>2</b>");
}
|
70
|
Can I display the +/- expand or collapse buttons using your EBN files

public void init()
{
COM com_Appearance,com_Node,com_Node1,com_Nodes;
anytype var_Appearance,var_Node,var_Node1,var_Nodes;
;
super();
var_Appearance = exchartview1.VisualAppearance(); com_Appearance = var_Appearance;
com_Appearance.Add(11,"c:\\exontrol\\images\\normal.ebn");
com_Appearance.Add(22,"c:\\exontrol\\images\\pushed.ebn");
com_Appearance.Add(1,"CP:11 2 2 -2 -2");
com_Appearance.Add(2,"CP:22 2 2 -2 -2");
exchartview1.HasButtons(4/*exCustom*/);
exchartview1.HasButtonsCustom(true,33554432);
exchartview1.HasButtonsCustom(false,16777216);
var_Node = exchartview1.Root(); com_Node = var_Node;
com_Node.Image(0);
com_Node.AddAssistant("Assistant 1");
com_Node.AddAssistant("Assistant 2");
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
var_Node1 = COM::createFromObject(com_Nodes.Add("Child <b>1</b>",,"1234")); com_Node1 = var_Node1;
com_Node1.Expanded(false);
com_Nodes.Add("Sub 1","1234");
com_Nodes.Add("Sub 2","1234");
com_Nodes.Add("Sub 3","1234");
com_Nodes.Add("Child <b>2</b>");
}
|
69
|
How can I change the +/- expand or collapse buttons

public void init()
{
COM com_Node,com_Node1,com_Nodes;
anytype var_Node,var_Node1,var_Nodes;
str var_s;
;
super();
var_s = "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTql";
var_s = var_s + "Vq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0";
var_s = var_s + "ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN";
var_s = var_s + "AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=";
exchartview1.Images(COMVariant::createFromStr(var_s));
exchartview1.HasButtons(4/*exCustom*/);
exchartview1.HasButtonsCustom(true,1);
exchartview1.HasButtonsCustom(false,2);
var_Node = exchartview1.Root(); com_Node = var_Node;
com_Node.Image(0);
com_Node.AddAssistant("Assistant 1");
com_Node.AddAssistant("Assistant 2");
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
var_Node1 = COM::createFromObject(com_Nodes.Add("Child <b>1</b>",,"1234")); com_Node1 = var_Node1;
com_Node1.Expanded(false);
com_Nodes.Add("Sub 1","1234");
com_Nodes.Add("Sub 2","1234");
com_Nodes.Add("Sub 3","1234");
com_Nodes.Add("Child <b>2</b>");
}
|
68
|
How can I change the +/- expand or collapse buttons

public void init()
{
COM com_Node,com_Node1,com_Nodes;
anytype var_Node,var_Node1,var_Nodes;
;
super();
exchartview1.HasButtons(2/*exCircle*/);
var_Node = exchartview1.Root(); com_Node = var_Node;
com_Node.Image(0);
com_Node.AddAssistant("Assistant 1");
com_Node.AddAssistant("Assistant 2");
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
var_Node1 = COM::createFromObject(com_Nodes.Add("Child <b>1</b>",,"1234")); com_Node1 = var_Node1;
com_Node1.Expanded(false);
com_Nodes.Add("Sub 1","1234");
com_Nodes.Add("Sub 2","1234");
com_Nodes.Add("Sub 3","1234");
com_Nodes.Add("Child <b>2</b>");
}
|
67
|
How can I display +/- expand or collapse buttons

public void init()
{
COM com_Node,com_Node1,com_Nodes;
anytype var_Node,var_Node1,var_Nodes;
;
super();
exchartview1.HasButtons(-1/*exPlus*/);
var_Node = exchartview1.Root(); com_Node = var_Node;
com_Node.Image(0);
com_Node.AddAssistant("Assistant 1");
com_Node.AddAssistant("Assistant 2");
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
var_Node1 = COM::createFromObject(com_Nodes.Add("Child <b>1</b>",,"1234")); com_Node1 = var_Node1;
com_Node1.Expanded(false);
com_Nodes.Add("Sub 1","1234");
com_Nodes.Add("Sub 2","1234");
com_Nodes.Add("Sub 3","1234");
com_Nodes.Add("Child <b>2</b>");
}
|
66
|
How do I show or hide the assistant nodes

public void init()
{
COM com_Node,com_Nodes;
anytype var_Node,var_Nodes;
;
super();
exchartview1.ShowAssistants(true);
var_Node = exchartview1.Root(); com_Node = var_Node;
com_Node.Image(0);
com_Node.AddAssistant("Assistant 1");
com_Node.AddAssistant("Assistant 2");
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
com_Nodes.Add("Child <b>1</b>",,"1234");
com_Nodes.Add("Sub 1","1234");
com_Nodes.Add("Sub 2","1234");
com_Nodes.Add("Sub 3","1234");
com_Nodes.Add("Child <b>2</b>");
}
|
65
|
How do I scale or zoom the chart

public void init()
{
COM com_Nodes;
anytype var_Nodes;
;
super();
exchartview1.BorderWidth(18);
exchartview1.BorderHeight(18);
exchartview1.ZoomWidthMode(1/*exCustomSize*/);
exchartview1.ZoomHeightMode(1/*exCustomSize*/);
exchartview1.ZoomWidth(2);
exchartview1.ZoomHeight(2);
exchartview1.Root().Image(0);
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
com_Nodes.Add("Child <b>1</b>",,"1234");
com_Nodes.Add("Sub 1","1234");
com_Nodes.Add("Sub 2","1234");
com_Nodes.Add("Sub 3","1234");
com_Nodes.Add("Child <b>2</b>");
}
|
64
|
How do I scale or zoom the chart

public void init()
{
COM com_Nodes;
anytype var_Nodes;
;
super();
exchartview1.BorderWidth(18);
exchartview1.BorderHeight(18);
exchartview1.ZoomWidthMode(2/*exControlSize*/);
exchartview1.ZoomHeightMode(2/*exControlSize*/);
exchartview1.Root().Image(0);
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
com_Nodes.Add("Child <b>1</b>",,"1234");
com_Nodes.Add("Sub 1","1234");
com_Nodes.Add("Sub 2","1234");
com_Nodes.Add("Sub 3","1234");
com_Nodes.Add("Child <b>2</b>");
}
|
63
|
How can I ensure that the selected node is visible or fits the chart's area

public void init()
{
COM com_Nodes;
anytype var_Nodes;
;
super();
exchartview1.EnsureVisibleOnSelect(true);
exchartview1.ScrollOnEnsure(false);
exchartview1.BorderWidth(18);
exchartview1.BorderHeight(18);
exchartview1.ZoomWidthMode(1/*exCustomSize*/);
exchartview1.ZoomHeightMode(1/*exCustomSize*/);
exchartview1.ZoomWidth(2);
exchartview1.ZoomHeight(2);
exchartview1.Root().Image(0);
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
com_Nodes.Add("Child <b>1</b>",,"1234");
com_Nodes.Add("Sub 1","1234");
com_Nodes.Add("Sub 2","1234");
com_Nodes.Add("Sub 3","1234");
com_Nodes.Add("Child <b>2</b>");
}
|
62
|
How do I avoid slow moving the chart when the user selects a new node

public void init()
{
;
super();
exchartview1.ScrollByClick(false);
}
|
61
|
How do I ensure that a node is visible or fits the chart's area

public void init()
{
COM com_Nodes;
anytype var_Nodes;
;
super();
exchartview1.Root().Image(0);
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
com_Nodes.Add("Child <b>1</b>",,"1234");
com_Nodes.Add("Sub 1","1234");
com_Nodes.Add("Sub 2","1234");
com_Nodes.Add("Child <b>2</b>");
exchartview1.EnsureVisibleNode("1234");
}
|
60
|
How do I change the root node, so it explore from a specified node

public void init()
{
COM com_Nodes;
anytype var_Nodes;
;
super();
exchartview1.Root().Image(0);
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
com_Nodes.Add("Child <b>1</b>",,"1234");
com_Nodes.Add("Sub 1","1234");
com_Nodes.Add("Sub 2","1234");
com_Nodes.Add("Child <b>2</b>");
exchartview1.ExploreFromNode("1234");
}
|
59
|
How do I select a node

public void init()
{
COM com_Nodes;
anytype var_Nodes;
;
super();
exchartview1.Root().Image(0);
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
com_Nodes.Add("Child <b>1</b>",,"1234");
com_Nodes.Add("Child <b>2</b>");
exchartview1.SelectNode("1234");
exchartview1.HideSelection(false);
}
|
58
|
How do I get the node from the cursor
public void init()
{
;
super();
}
|
57
|
How do I fix the height for all nodes

public void init()
{
COM com_Nodes;
anytype var_Nodes;
;
super();
exchartview1.FixedHeightNode(32);
exchartview1.Root().Image(0);
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
com_Nodes.Add("Child <b>1</b>");
com_Nodes.Add("Child <b>2</b>");
}
|
56
|
How do I fix the width for all nodes

public void init()
{
COM com_Nodes;
anytype var_Nodes;
;
super();
exchartview1.FixedWidthNode(128);
exchartview1.Root().Image(0);
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
com_Nodes.Add("Child <b>1</b>");
com_Nodes.Add("Child <b>2</b>");
}
|
55
|
How do I change the style of the link between nodes

public void init()
{
COM com_Nodes;
anytype var_Nodes;
;
super();
exchartview1.PenLink(1/*exPenDash*/);
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
com_Nodes.Add("Child <b>1</b>");
com_Nodes.Add("Child <b>2</b>");
}
|
54
|
How do I change the color to link the nodes

public void init()
{
COM com_Nodes;
anytype var_Nodes;
;
super();
exchartview1.LinkColor(WinApi::RGB2int(255,0,0));
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
com_Nodes.Add("Child <b>1</b>");
com_Nodes.Add("Child <b>2</b>");
}
|
53
|
How do I change the shape for selected node, using your EBN files

public void init()
{
COM com_Nodes;
anytype var_Nodes;
;
super();
exchartview1.VisualAppearance().Add(2,"c:\\exontrol\\images\\pushed.ebn");
exchartview1.SelColor(0x2000000);
exchartview1.SelectNode("root");
exchartview1.HideSelection(false);
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
com_Nodes.Add("Child <b>1</b>");
com_Nodes.Add("Child <b>2</b>");
}
|
52
|
How do I change the color for selected node

public void init()
{
COM com_Nodes;
anytype var_Nodes;
;
super();
exchartview1.SelColor(WinApi::RGB2int(0,0,255));
exchartview1.SelectNode("root");
exchartview1.HideSelection(false);
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
com_Nodes.Add("Child <b>1</b>");
com_Nodes.Add("Child <b>2</b>");
}
|
51
|
How do I hide the node's shadow

public void init()
{
;
super();
exchartview1.ShadowNode(false);
}
|
50
|
How do I change the pen to draw the border for all nodes

public void init()
{
;
super();
exchartview1.PenBorderNode(2/*exPenDot*/);
}
|
49
|
How do I change the shape of the border for all nodes

public void init()
{
;
super();
exchartview1.VisualAppearance().Add(2,"c:\\exontrol\\images\\pushed.ebn");
exchartview1.Background(0/*exNodeFrame*/,0x2000000);
}
|
48
|
How do I change the shape of the border for all nodes

public void init()
{
;
super();
exchartview1.DrawRoundNode(0);
}
|
47
|
How do I change the foreground color for all nodes

public void init()
{
COM com_Nodes;
anytype var_Nodes;
;
super();
exchartview1.ForeColorNode(WinApi::RGB2int(255,0,0));
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
com_Nodes.Add("Child <b>1</b>");
com_Nodes.Add("Child <b>2</b>");
}
|
46
|
How do I change the background color for all nodes

public void init()
{
COM com_Nodes;
anytype var_Nodes;
;
super();
exchartview1.BackColorNode(WinApi::RGB2int(255,0,0));
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
com_Nodes.Add("Child <b>1</b>");
com_Nodes.Add("Child <b>2</b>");
}
|
45
|
How do I change the key of the root

public void init()
{
;
super();
exchartview1.Root().Key("myKey");
}
|
44
|
How do I change the caption of the root

public void init()
{
;
super();
exchartview1.Root().Caption("new<br>root");
}
|
43
|
How do I access the root node

public void init()
{
;
super();
exchartview1.Root().Caption("new<br>root");
}
|
42
|
How do I access the nodes collection

public void init()
{
COM com_Nodes;
anytype var_Nodes;
;
super();
var_Nodes = exchartview1.Nodes(); com_Nodes = var_Nodes;
com_Nodes.Add("Child <b>1</b>");
com_Nodes.Add("Child <b>2</b>");
}
|
41
|
How do I refresh the control

public void init()
{
;
super();
exchartview1.Nodes().Add("Child <b>1</b>");
exchartview1.Nodes().Add("Child <b>2</b>");
exchartview1.Refresh();
}
|
40
|
How do I prevent painting while several changes are performed

public void init()
{
;
super();
exchartview1.BeginUpdate();
exchartview1.Nodes().Add("Child <b>1</b>");
exchartview1.Nodes().Add("Child <b>2</b>");
exchartview1.EndUpdate();
}
|
39
|
How do I indent the full chart to the right

public void init()
{
;
super();
exchartview1.BorderWidth(8);
exchartview1.BorderHeight(8);
}
|
38
|
How can I change the node's border/frame, using your EBN files

public void init()
{
;
super();
exchartview1.VisualAppearance().Add(1,"c:\\exontrol\\images\\normal.ebn");
exchartview1.Background(0/*exNodeFrame*/,0x1000000);
exchartview1.Nodes().Add("Child <b>1</b>");
exchartview1.Nodes().Add("Child <b>2</b>");
}
|
37
|
How can still display the selected node when the control loses the focus

public void init()
{
;
super();
exchartview1.HideSelection(false);
}
|
36
|
How do I disable or enable the control
public void init()
{
;
super();
exchartview1.Enabled(false);
}
|
35
|
How do I change the visual aspect for thumb parts in the scroll bars, using EBN

public void init()
{
;
super();
exchartview1.VisualAppearance().Add(1,"c:\\exontrol\\images\\normal.ebn");
exchartview1.VisualAppearance().Add(2,"c:\\exontrol\\images\\pushed.ebn");
exchartview1.VisualAppearance().Add(3,"c:\\exontrol\\images\\hot.ebn");
exchartview1.Background(388/*exHSThumb*/,0x1000000);
exchartview1.Background(389/*exHSThumbP*/,0x2000000);
exchartview1.Background(391/*exHSThumbH*/,0x3000000);
exchartview1.Background(260/*exVSThumb*/,0x1000000);
exchartview1.Background(261/*exVSThumbP*/,0x2000000);
exchartview1.Background(263/*exVSThumbH*/,0x3000000);
exchartview1.FixedWidthNode(320);
}
|
34
|
How do I change the visual aspect only for the thumb in the scroll bar, using EBN

public void init()
{
;
super();
exchartview1.VisualAppearance().Add(1,"c:\\exontrol\\images\\normal.ebn");
exchartview1.VisualAppearance().Add(2,"c:\\exontrol\\images\\pushed.ebn");
exchartview1.VisualAppearance().Add(3,"c:\\exontrol\\images\\hot.ebn");
exchartview1.Background(388/*exHSThumb*/,0x1000000);
exchartview1.Background(389/*exHSThumbP*/,0x2000000);
exchartview1.Background(391/*exHSThumbH*/,0x3000000);
exchartview1.ScrollThumbSize(1/*exHScroll*/,96);
exchartview1.FixedWidthNode(320);
}
|
33
|
I've seen that you can change the visual appearance for the scroll bar. How can I do that

public void init()
{
;
super();
exchartview1.VisualAppearance().Add(1,"c:\\exontrol\\images\\normal.ebn");
exchartview1.VisualAppearance().Add(2,"c:\\exontrol\\images\\pushed.ebn");
exchartview1.VisualAppearance().Add(3,"c:\\exontrol\\images\\hot.ebn");
exchartview1.Background(324/*exSBtn*/,0x1000000);
exchartview1.Background(325/*exSBtnP*/,0x2000000);
exchartview1.Background(327/*exSBtnH*/,0x3000000);
exchartview1.Background(404/*exHSBack*/,WinApi::RGB2int(240,240,240));
exchartview1.Background(276/*exVSBack*/,WinApi::RGB2int(240,240,240));
exchartview1.Background(3/*exSizeGrip*/,WinApi::RGB2int(240,240,240));
exchartview1.FixedWidthNode(320);
}
|
32
|
Can I change the forecolor for the tooltip

public void init()
{
;
super();
exchartview1.ToolTipDelay(1);
exchartview1.ToolTipWidth(364);
exchartview1.Background(66/*exToolTipForeColor*/,WinApi::RGB2int(255,0,0));
exchartview1.Root().ToolTip("This is a bit of text that's shown when the cursor hovers the node.");
}
|
31
|
Can I change the background color for the tooltip

public void init()
{
;
super();
exchartview1.ToolTipDelay(1);
exchartview1.ToolTipWidth(364);
exchartview1.Background(65/*exToolTipBackColor*/,WinApi::RGB2int(255,0,0));
exchartview1.Root().ToolTip("This is a bit of text that's shown when the cursor hovers the node.");
}
|
30
|
Can I change the default border of the tooltip, using your EBN files

public void init()
{
;
super();
exchartview1.ToolTipDelay(1);
exchartview1.ToolTipWidth(364);
exchartview1.VisualAppearance().Add(1,"c:\\exontrol\\images\\normal.ebn");
exchartview1.Background(64/*exToolTipAppearance*/,0x1000000);
exchartview1.Root().ToolTip("This is a bit of text that's shown when the cursor hovers the node.");
}
|
29
|
How do I call your x-script language

public void init()
{
;
super();
exchartview1.ExecuteTemplate("BackColor = RGB(255,0,0)");
}
|
28
|
How do I call your x-script language

public void init()
{
;
super();
exchartview1.Template("BackColor = RGB(255,0,0)");
}
|
27
|
Can I change the font for the tooltip

public void init()
{
COM com_StdFont;
anytype var_StdFont;
;
super();
exchartview1.ToolTipDelay(1);
var_StdFont = exchartview1.ToolTipFont(); com_StdFont = var_StdFont;
com_StdFont.Name("Tahoma");
com_StdFont.Size(14);
exchartview1.ToolTipWidth(364);
exchartview1.Root().ToolTip("This is a bit of text that's shown when the cursor hovers the node.");
}
|
26
|
I've seen that the width of the tooltip is variable. Can I make it larger

public void init()
{
;
super();
exchartview1.ToolTipWidth(328);
exchartview1.Root().ToolTip("This is a bit of text that's shown when the cursor hovers the node.");
}
|
25
|
How do I let the tooltip being displayed longer

public void init()
{
;
super();
exchartview1.ToolTipPopDelay(10000);
exchartview1.Root().ToolTip("This is a bit of text that's shown when the cursor hovers the node.");
}
|
24
|
How do I disable showing the tooltip for all control
public void init()
{
;
super();
exchartview1.ToolTipDelay(0);
exchartview1.Root().ToolTip("This is a bit of text that's shown when the cursor hovers the node.");
}
|
23
|
How do I show the tooltip quicker

public void init()
{
;
super();
exchartview1.ToolTipDelay(1);
exchartview1.Root().ToolTip("This is a bit of text that's shown when the cursor hovers the node.");
}
|
22
|
Can I change the order of the buttons in the scroll bar

public void init()
{
;
super();
exchartview1.ScrollOrderParts(1/*exHScroll*/,"t,l,r");
exchartview1.ScrollOrderParts(0/*exVScroll*/,"t,l,r");
exchartview1.FixedWidthNode(320);
}
|
21
|
The thumb size seems to be very small. Can I make it bigger

public void init()
{
;
super();
exchartview1.ScrollThumbSize(1/*exHScroll*/,164);
exchartview1.FixedWidthNode(320);
}
|
20
|
How do I enlarge or change the size of the control's scrollbars

public void init()
{
;
super();
exchartview1.ScrollHeight(18);
exchartview1.ScrollWidth(18);
exchartview1.ScrollButtonWidth(18);
exchartview1.ScrollButtonHeight(18);
exchartview1.FixedWidthNode(320);
exchartview1.FixedHeightNode(320);
}
|
19
|
How can I display my text on the scroll bar, using a different font

public void init()
{
COM com_StdFont;
anytype var_StdFont;
;
super();
exchartview1.ScrollPartCaption(1/*exHScroll*/,256/*exThumbPart*/,"This is just a text");
var_StdFont = COM::createFromObject(exchartview1.ScrollFont(1/*exHScroll*/)); com_StdFont = var_StdFont;
com_StdFont.Size(12);
exchartview1.ScrollThumbSize(1/*exHScroll*/,128);
exchartview1.ScrollHeight(24);
exchartview1.ScrollPartCaption(1/*exHScroll*/,256/*exThumbPart*/,"This is <s><font Tahoma;12> just </font></s> text");
exchartview1.ScrollHeight(20);
exchartview1.FixedWidthNode(320);
}
|
18
|
How can I display my text on the scroll bar

public void init()
{
;
super();
exchartview1.ScrollPartCaption(1/*exHScroll*/,256/*exThumbPart*/,"this is just a text");
exchartview1.ScrollThumbSize(1/*exHScroll*/,96);
exchartview1.FixedWidthNode(320);
}
|
17
|
How do I assign a tooltip to a scrollbar

public void init()
{
;
super();
exchartview1.ScrollToolTip(1/*exHScroll*/,"This is a tooltip being shown when you click and drag the thumb in the horizontal scroll bar");
exchartview1.FixedWidthNode(320);
}
|
16
|
How do I assign an icon to the button in the scrollbar

public void init()
{
str var_s;
;
super();
var_s = "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTql";
var_s = var_s + "Vq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0";
var_s = var_s + "ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN";
var_s = var_s + "AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=";
exchartview1.Images(COMVariant::createFromStr(var_s));
exchartview1.ScrollPartVisible(1/*exHScroll*/,32768/*exLeftB1Part*/,true);
exchartview1.ScrollPartCaption(1/*exHScroll*/,32768/*exLeftB1Part*/,"<img>1</img>");
exchartview1.ScrollHeight(18);
exchartview1.ScrollButtonWidth(18);
exchartview1.FixedWidthNode(320);
}
|
15
|
I need to add a button in the scroll bar. Is this possible

public void init()
{
;
super();
exchartview1.ScrollPartVisible(1/*exHScroll*/,32768/*exLeftB1Part*/,true);
exchartview1.ScrollPartCaption(1/*exHScroll*/,32768/*exLeftB1Part*/,"1");
exchartview1.FixedWidthNode(320);
}
|
14
|
Can I display an additional buttons in the scroll bar

public void init()
{
;
super();
exchartview1.ScrollPartVisible(1/*exHScroll*/,32768/*exLeftB1Part*/,true);
exchartview1.ScrollPartVisible(1/*exHScroll*/,16384/*exLeftB2Part*/,true);
exchartview1.ScrollPartVisible(1/*exHScroll*/,1/*exRightB6Part*/,true);
exchartview1.ScrollPartVisible(1/*exHScroll*/,2/*exRightB5Part*/,true);
exchartview1.FixedWidthNode(320);
}
|
13
|
How do I change the control's foreground color

public void init()
{
;
super();
exchartview1.ForeColor(WinApi::RGB2int(255,0,0));
}
|
12
|
How do I change the control's background color

public void init()
{
;
super();
exchartview1.BackColor(WinApi::RGB2int(200,200,200));
}
|
11
|
How can I change the control's font

public void init()
{
;
super();
exchartview1.Font().Name("Verdana");
exchartview1.Refresh();
}
|
10
|
How do I put a picture on the center of the control

public void init()
{
;
super();
exchartview1.Picture(exchartview1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"));
exchartview1.PictureDisplay(17/*MiddleCenter*/);
}
|
9
|
How do I resize/stretch a picture on the control's background

public void init()
{
;
super();
exchartview1.Picture(exchartview1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"));
exchartview1.PictureDisplay(49/*Stretch*/);
}
|
8
|
How do I put a picture on the control's center right bottom side

public void init()
{
;
super();
exchartview1.Picture(exchartview1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"));
exchartview1.PictureDisplay(34/*LowerRight*/);
}
|
7
|
How do I put a picture on the control's center left bottom side

public void init()
{
;
super();
exchartview1.Picture(exchartview1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"));
exchartview1.PictureDisplay(32/*LowerLeft*/);
}
|
6
|
How do I put a picture on the control's center top side

public void init()
{
;
super();
exchartview1.Picture(exchartview1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"));
exchartview1.PictureDisplay(1/*UpperCenter*/);
}
|
5
|
How do I put a picture on the control's right top corner

public void init()
{
;
super();
exchartview1.Picture(exchartview1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"));
exchartview1.PictureDisplay(2/*UpperRight*/);
}
|
4
|
How do I put a picture on the control's left top corner

public void init()
{
;
super();
exchartview1.Picture(exchartview1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"));
exchartview1.PictureDisplay(0/*UpperLeft*/);
}
|
3
|
How do I put a picture on the control's background

public void init()
{
;
super();
exchartview1.Picture(exchartview1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"));
}
|
2
|
How do I change the control's border, using your EBN files

public void init()
{
;
super();
exchartview1.VisualAppearance().Add(1,"c:\\exontrol\\images\\normal.ebn");
exchartview1.Appearance(16777216);
}
|
1
|
How do I remove the control's border

public void init()
{
;
super();
exchartview1.Appearance(0/*None2*/);
}
|